html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
header,
section,
footer {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	list-style: none;
}

a,
a:visited {
	text-decoration: none;
	color: inherit;
}

html,
body {
	min-width: 1100px;
	margin: 0 auto;
	padding: 0;
	font-size: 12px;
	line-height: 24px;
	color: #666;
	font-family: "微雅软黑", "Microsoft Yahei", "宋体";
	text-decoration: none;
	font-weight: normal;
	text-decoration: none;
}

ul,
dl,
ol {
	list-style: none;
}

ul,
dl,
ol,
dt,
dd,
p,
h1,
h2,
h3,
h4,
div,
span,
font {
	margin: 0;
	padding: 0;
}

.cls {
	clear: both;
}

.wrap {
	width: 1100px;
	margin: 0 auto;
}

header {
	height: 80px;
}

.logo {
	float: left;
}

.logo img {
	margin-top: 10px;
	width: 60px;
	height: 60px;
}

.cname {
	float: left;
	padding: 28px 0 0 10px;
}

.cname h3 {
	color: #000;
	font-size: 30px;
}

.phone {
	float: right;
	font-size: 25px;
	color: #999;
	margin-top: 24px;
}

.phone img {
	float: left;
	padding-right: 15px;
	border-right: 1px solid #bbb;
	margin-right: 15px;
}

.pnum {
	height: 32px;
	line-height: 32px;
	float: left;
}

.pnum span {
	color: #ff0000;
}

.inav {
	width: 100%;
	height: 60px;
	background: #000;
}

.inav ul li {
	display: block;
	height: 60px;
	width: 14.28571%;
	float: left;
	text-align: center;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.inav ul li:hover {
	background: #ff0000;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.inav ul li a {
	display: block;
	height: 60px;
	line-height: 60px;
	color: #fff;
	font-size: 14px;
}

.inav ul li a:hover {
	color: #ffffff;
}


/*banner*/

#wrapper {
	background: #fff;
	position: relative;
}

a {
	text-decoration: none;
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

a:focus,
a:link,
a:active {
	outline: none;
}

a:hover {
	color: #444;
}

.fullwidthbanner-container {
	width: 100% !important;
	position: relative;
	padding: 0;
	max-height: 500px !important;
	overflow: hidden;
}

.fullwidthbanner-container .fullwidthabnner {
	width: 100% !important;
	max-height: 500px !important;
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	.banner,
	.bannercontainer {
		width: 768px;
		height: 309px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.banner,
	.bannercontainer {
		width: 480px;
		height: 193px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
	.banner,
	.bannercontainer {
		width: 320px;
		height: 129px;
	}
}

@media only screen and (max-width: 319px) {
	.banner,
	.bannercontainer {
		width: 240px;
		height: 97px;
	}
}

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected {
	background: #e1472f !important;
}

.tp-leftarrow:hover,
.tp-rightarrow:hover {
	background-color: #e1472f !important;
}


/** BULLETS **/

.tp-bullets {
	z-index: 1001;
	position: absolute;
	bottom: 0px;
}

.tp-leftarrow.large {
	z-index: 100;
	cursor: pointer;
	position: relative;
	background: #393939 url(../img/slider-left-arrow.png) no-Repeat;
	width: 42px;
	height: 43px;
	margin-left: 0px;
	margin-top: -21px;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	/*增加阴影*/
	/*
	**打开注释，按钮变成圆形的
	border-radius: 20px;  所有角都使用半径为5px的圆角，此属性为CSS3标准属性 
	-moz-border-radius: 20px;  Mozilla浏览器的私有属性 
	-webkit-border-radius: 20px;  Webkit浏览器的私有属性 
	border-radius: 20px 20px 20px 20px; 四个半径值分别是左上角、右上角、右下角和左下角 
	*/
}

.tp-rightarrow.large {
	z-index: 100;
	cursor: pointer;
	position: relative;
	background: #393939 url(../img/slider-right-arrow.png) no-Repeat 0 0;
	width: 42px;
	height: 43px;
	margin-left: 0;
	margin-top: -21px;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	/*增加阴影*/
	/*
	**打开注释，按钮变成圆形的
	border-radius: 20px;  所有角都使用半径为5px的圆角，此属性为CSS3标准属性 
	-moz-border-radius: 20px;  Mozilla浏览器的私有属性 
	-webkit-border-radius: 20px;  Webkit浏览器的私有属性 
	border-radius: 20px 20px 20px 20px; 四个半径值分别是左上角、右上角、右下角和左下角 
	*/
}

.tp-bullets.tp-thumbs {
	z-index: 100;
	position: absolute;
	padding: 3px;
	background-color: #fff;
	width: 500px;
	height: 50px;
	margin-top: -50px;
}

.fullwidthbanner-container .tp-thumbs {
	padding: 3px;
}

.tp-bullets.tp-thumbs .tp-mask {
	width: 500px;
	height: 50px;
	overflow: hidden;
	position: relative;
}

.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer {
	width: 5000px;
	position: absolute;
}

.tp-bullets.tp-thumbs .bullet {
	width: 100px;
	height: 50px;
	cursor: pointer;
	overflow: hidden;
	background: none;
	margin: 0;
	float: left;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/*filter: alpha(opacity=50);	*/
	-moz-opacity: 0.3;
	-khtml-opacity: 0.3;
	opacity: 0.3;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
}

.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

.tp-thumbs img {
	width: 100%;
}

.tp-bannertimer {
	width: 100%;
	height: 10px;
	position: absolute;
	z-index: 200;
	z-index: 5000;
}

.tp-bannertimer.tp-bottom {
	bottom: 0px !important;
	height: 5px;
}


/*@media only screen and (min-width: 768px) and (max-width: 959px) {;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive .tp-bullets.tp-thumbs {
        width: 300px !important;
        height: 30px !important;
    }

    .responsive .tp-bullets.tp-thumbs .tp-mask {
        width: 300px !important;
        height: 30px !important;
    }

    .responsive .tp-bullets.tp-thumbs .bullet {
        width: 60px !important;
        height: 30px !important;
    }
}

@media only screen and (min-width: 0px) and (max-width: 479px) {
    .responsive .tp-bullets {
        display: none;
    }

    .responsive .tparrows {
        display: none;
    }
}*/

.tp-simpleresponsive img {
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.tp-simpleresponsive a {
	text-decoration: none;
}

.tp-simpleresponsive ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tp-simpleresponsive>ul>li {
	list-stye: none;
	position: absolute;
	visibility: hidden;
}

.caption.slidelink a div,
.tp-caption.slidelink a div {
	width: 10000px;
	height: 10000px;
}

.tp-loader {
	background: url(../img/loader.gif) no-repeat 10px 10px;
	background-color: #fff;
	margin: -22px -22px;
	top: 50%;
	left: 50%;
	z-index: 10000;
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


/*banner结束*/

.ipro {
	margin-top: 30px;
}

.btbj {
	position: relative;
	width: 500px;
	height: 100px;
	margin: 0 auto 30px auto;
	background: url(../img/btbj.png) no-repeat;
}

.btbj h5 {
	position: absolute;
	left: 50%;
	margin: 18px 0 0 -72px;
	font-size: 36px;
	line-height: 40px;
	text-align: center;
	color: #000;
}

.btbj h4 {
	position: absolute;
	left: 50%;
	margin: 62px 0 0 -59px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: #000;
}

.ipro-nav {
	width: 180px;
	float: left;
}

.ipro-nav-t {
	width: 180px;
	height: 60px;
	background: #ff0000;
	font-size: 25px;
	color: #fff;
	text-align: center;
	line-height: 60px;
}

.ipro-nav ul {
	background: #eee;
	padding-bottom: 10px;
}

.ipro-nav ul li {
	float: left;
	width: 150px;
	margin: 8px 0 0 15px;
	padding-left: 15px;
	background: url(../img/xsj.png) left no-repeat;
}

.ipro-nav ul li a {
	display: block;
	font-size: 14px;
}

.ipro-txt {
	float: right;
	width:1100px;
}

.ipro-txt li {
	width: 346px;
	box-sizing: border-box;
	float: left; margin-left:10px; margin-right:10px; margin-bottom:10px
}

.ipro-txt li a {
	display: block;
}

.ipro-txt li a img {
	width: 346px;
	height: 333px;
	box-sizing: border-box;
	border: 1px solid #aaa;
	float: left;
}

.ipro-txt span {
	display: block;
	font-size: 14px;
	text-align: center;
}

.ipro-more {
	margin: 20px auto 0 auto;
}

.ipro-more a {
	display: block;
	margin: 0 auto;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	width: 100px;
	border: 1px solid #666;
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.ipro-more a:hover {
	color: #ff0000;
	border: 1px solid #ff0000;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.icase{
	margin-top: 40px;
}
.btbj-a {
	position: relative;
	width: 500px;
	height: 100px;
	margin: 0 auto 40px auto;
	background: url(../img/btbj.png) no-repeat;
}
.btbj-a h5 {
	position: absolute;
	left: 50%;
	margin: 18px 0 0 -72px;
	font-size: 36px;
	line-height: 40px;
	text-align: center;
	color: #000;
}

.btbj-a h4 {
	position: absolute;
	left: 50%;
	margin: 62px 0 0 -30px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: #000;
}

.iabout {
	margin-top: 40px;
	padding: 30px 0;
	height: 310px;
	background: url(../img/abbg.jpg) center no-repeat;
	
}
.btbj-b {
	position: relative;
	width: 500px;
	height: 100px;
	margin: 0 auto 20px auto;
	background: url(../img/btbj-b.png) no-repeat;
}
.btbj-b h5 {
	position: absolute;
	left: 50%;
	margin: 18px 0 0 -72px;
	font-size: 36px;
	line-height: 40px;
	text-align: center;
	color: #fff;
}

.btbj-b h4 {
	position: absolute;
	left: 50%;
	margin: 62px 0 0 -59px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: #fff;
}


.iabout-txt {
	margin-top: 20px;
}

.iabout-txt h1 {
	display: block;
	color: #fff;
	text-align: center;
	float: left;
	font-size: 13px;
	line-height: 33px;
}


.iabout-btn {
	margin-top: 30px;
}

.iabout-btn a {
	display: block;
	margin: 0 auto;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	width: 100px;
	border: 1px solid #fff;
	border-radius: 10px;
	text-align: center;
	color: #fff;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.iabout-btn a:hover {
	color: #333;
	background: #fff;
	border: 1px solid #fff;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.inews {
	margin-top: 40px;
	overflow: hidden;
}
.btbj-c {
	position: relative;
	width: 500px;
	height: 100px;
	margin: 0 auto 40px auto;
	background: url(../img/btbj.png) no-repeat;
}
.btbj-c h5 {
	position: absolute;
	left: 50%;
	margin: 18px 0 0 -72px;
	font-size: 36px;
	line-height: 40px;
	text-align: center;
	color: #000;
}

.btbj-c h4 {
	position: absolute;
	left: 50%;
	margin: 62px 0 0 -36px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: #000;
}

.inews-img {
	width: 300px;
	height: 180px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	float: left;
	margin-left: 25px;
	
}
.inews-t{
	margin-bottom: 10px;
}
.inews-t-r {
	width: 700px;
	float: right;
	margin-right: 25px;

}
.inews-t-r h5{
	font-size: 26px;
	color: #000;
}

.inews-t-txt{
	margin: 20px 0;
	font-size: 14px;
}
.inews-t-r span{
	color: #aaa;
}
.inews-b ul li{
	width: 500px;
	float: left;
	margin: 10px 25px;
}
.inews-b ul li a h3{
	font-size: 17px;
	color: #000;
}
.inews-b ul li a span{
	float: left;
	color: #aaa;
}
.inews-b ul li a .inews-more{
	float: right;
	color: #ff0000;
}
.inews-btn{
	margin-top: 20px;
}
.inews-btn a {
	display: block;
	margin: 0 auto;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	width: 100px;
	border: 1px solid #666;
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.inews-btn a:hover {
	color: #ff0000;
	border: 1px solid #ff0000;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

footer {
	margin-top: 30px;
	padding-bottom: 8px;
	background: #000;
}

.ftnav {
	width: 700px;
	margin: 0 auto 10px auto;
}

.ftnav ul li {
	height: 20px;
	line-height: 20px;
	width: 12.5%;
	float: left;
	text-align: center;
	margin: 10px 0;
}

.ftnav ul li a {
	display: block;
	color: #fff;
}

.ftli {
	box-sizing: border-box;
	border-right: 1px solid #fff;
}
footer img{
	padding: 10px 0;
	margin-right: 20px;
	float: left;
}
.fttext{
	float: left;
	color: #fff;
}
.ftphone{
	float: right;
	color: #FFF;
	font-size: 27px;
	line-height: 35px;
	padding-left: 70px;
	background: url(../img/ftphone.png) left no-repeat;
}
.ftphone p{
	font-size: 18px;
}

.yq span {
	margin-right: 10px;
}

.boxs {
	width: 100%;
	margin-top: 30px;
}

.left {
	width: 230px;
	float: left;
}

.left-t {
	width: 210px;
	height: 70px;
	background: #ff0000;
	color: #fff;
	font-size: 30px;
	line-height: 70px;
	padding-left: 20px;
}

.left-b {
	margin-top: 10px;
	width: 210px;
	padding: 0 10px;
}

.left-b ul li {
	line-height: 40px;
	border-bottom: 1px dashed #ccc;
}

.left-b ul li a {
	display: block;
	font-size: 15px;
}

.left-b ul li a:hover {
	color: #ff0000;
}

.right {
	width: 830px;
	float: right;
}

.right1 {
	width: 1100px;
	float: right;
}

.right-title {
	position: relative;
	height: 50px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
}

.right-title h5 {
	line-height: 50px;
	font-size: 35px;
	color: #333;
	font-weight: bold;
}

.pos {
	position: absolute;
	right: 0;
	bottom: 3px;
	font-size: 13px;
}

.right-box {
	width: 830px;
	padding: 20px 0;
	font-size: 13px;
}

.box-pro ul li {
	width: 262px;
	float: left;
	margin: 8px 7px;
}

.box-pro-img {
	border: 1px solid #eee;
	box-sizing: border-box;
	width: 260px;
	height: 270px;
	float: left;
}

.box-pro-txt {
	width: 240px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	background: #eee;
	padding: 5px 10px;
	float: left;
}

.box-pro-txt p {
	line-height: 22px;
}

.box-pro-txt span {
	font-size: 15px;
	margin-bottom: 5px;
	display: block;
	font-weight: bold;
	color: #333;
}

.box-pro ul li:hover .box-pro-img {
	border: 1px solid #ff0000;
}

.box-pro ul li:hover .box-pro-txt {
	background: #ff0000;
	color: #fff;
}

.box-pro ul li:hover .box-pro-txt>span {
	color: #fff;
}

#pages {
	padding: 14px 0 10px;
	text-align: center;
	font-size: 12px;
}

#pages>a {
	display: inline-block;
	height: 22px;
	line-height: 22px;
	background: #fff;
	border: 1px solid #e3e3e3;
	text-align: center;
	color: #333;
	padding: 0 10px
}

#pages>a.a1 {
	background: url(../images/admin_img/pages.png) no-repeat 0 5px;
	width: 56px;
	padding: 0
}

#pages>a:hover {
	background: #f1f1f1;
	color: #000;
	text-decoration: none
}

#pages>span {
	display: inline-block;
	height: 22px;
	line-height: 22px;
	background: #fff;
	border: 1px solid #e3e3e3;
	text-align: center;
	color: #333;
	padding: 0 10px
}

.right-box-news ul li {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

.right-box-news a {
	display: block;
}

.right-box-news h3 {
	font-size: 16px;
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
	color: #333;
}

.right-box-news a:hover h3 {
	color: #ff0000;
}

.right-box-news span {
	font-size: 12px;
	color: #aaa;
}

.right-box-news h1 {
	display: block;
	text-align: right;
	color: #ff0000;
	margin-top: 5px;
}

.env ul li {
	width: 250px;
	float: left;
	margin: 8px 10px;
}

.env img {
	width: 250px;
	height: 200px;
	box-sizing: border-box;
	border: 1px solid #ccc;
}

.nr-news h5 {
	display: block;
	height: 35px;
	line-height: 35px;
	font-size: 25px;
	color: #333;
	text-align: center;
}

.nr-news h4 {
	display: block;
	height: 30px;
	line-height: 30px;
	color: #aaa;
	font-size: 12px;
	text-align: center;
	margin-bottom: 15px;
}

.prenext {
	position: relative;
	margin-top: 50px;
}

.prenext .pre {
	position: absolute;
	left: 0;
}

.prenext .next {
	position: absolute;
	right: 0;
}

.nr-pro h5 {
	display: block;
	height: 35px;
	line-height: 35px;
	font-size: 25px;
	color: #333;
	text-align: center;
	margin-bottom: 10px;
}

.nr-pro-img {
	display: block;
	margin: 0 auto 20px auto;
}
.nr-pro-xx{
	display: block;
    font-size: 20px;
    line-height: 40px;
    margin: 25px 0;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ccc;
}

.marqueeleft{height:186px;width:1100px;overflow:hidden;margin:40px auto;}
.marqueeleft ul{float:left;}
.marqueeleft li{float:left;margin:0 5px;display:inline;width:213px;height:183px;overflow:hidden;}
.marqueeleft li .pic{display:block;border:#ccc 1px solid;width:200px;height:154px;padding:2px;overflow:hidden;}
.marqueeleft li .txt{text-align:center;height:23px;line-height:23px;}
.marqueeleft li .txt a{font-size: 14px;}
.shortcut{position:fixed;top:0;left:0;z-index:9999;width:100%;}
*html,*html body /* 修正IE6振动bug */{background-image:url(about:blank);background-attachment:fixed;}
*html .shortcut{position:absolute;top:expression(eval(document.documentElement.scrollTop));}
.shortcut{height:28px;line-height:28px;font-size:12px;background:#EEEEEE;text-transform:uppercase;box-shadow:1px 0px 2px rgba(0,0,0,0.2);border-bottom:1px solid #DDDDDD;}
.shortcut h1{font-size:14px;font-family:"微软雅黑","宋体";}
.shortcut a,.shortcut h1{padding:0px 10px;letter-spacing:1px;color:#333;text-shadow:0px 1px 1px #fff;display:block;float:left;}
.shortcut a:hover{background:#fff;}
.shortcut span.right{float:right;}
.shortcut span.right a{float:left;display:block;color:#ff6600;font-weight:800;}
.headeline{height:40px;overflow:hidden;}
.adv960x90{width:960px;height:90px;overflow:hidden;border:solid 1px #E6E6E6;margin:0 auto;}
.adv728x90{width:728px;height:90px;overflow:hidden;border:solid 1px #E6E6E6;margin:0 auto;}